# List asset classes by type

Returns the list of asset classes associated with the specified furniture asset type within the current account context.
            
Behavior:
- Validates asset type association with the account
- Retrieves all asset classes linked to the specified asset type
- Returns asset class identifiers and descriptive details
- Logs the action as a furniture asset type classes view event

Endpoint: GET /api/v1/furniture/assettypes/{assetTypeIdentifier}/assetclass/list

## Path parameters:

  - `assetTypeIdentifier` (string, required)

## Response 200 fields (text/plain):

  - `data` (array,null)

  - `data.assetClassId` (string)

  - `data.assetClassName` (string,null)

  - `data.assetType` (object)

  - `data.assetType.assetTypeId` (string)

  - `data.assetType.assetTypeName` (string,null)

  - `data.assetClassSymbol` (object)

  - `data.assetClassSymbol.symbolId` (string)

  - `data.assetClassSymbol.symbolName` (string,null)

  - `data.assetClassSymbol.gisSymbolIcon` (string,null)

  - `data.assetClassSymbol.symbolColorCode` (string,null)

  - `data.assetClassSymbol.dwgSymbolMode` (boolean)

  - `data.responseDescription` (string,null)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


